-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DBG - testUsed UDisks2 timeout #19572
DBG - testUsed UDisks2 timeout #19572
Conversation
def testUsed(self): | ||
def checkUsed(self): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There's no need for this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes yes yes... :-)
def testUsed1(self): | ||
self.checkUsed() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just call self.testUsed()
in the amplifications.
29178f5
to
62cc665
Compare
My hunch right now is that we will have to retry the dialog. But let's first try to collect some data on what is actually going wrong. |
17ae6cd
to
12be226
Compare
On rhos, testUsed seems reliably green. |
c369b66
to
eb51f4f
Compare
UDisks2 locks the LUKS device during teardown, waits for the cleartext device to disappear, and immediately wipes the partition table, which succeeds (because nothing has /dev/sda open at the time). Then UDisks2 does a BLKRRPART ioctl which fails with EBUSY: something must still have /dev/sda1 open at that time. Maybe udev? But there is no uevent on /dev/sda1 during all of this. Hmm. |
eb51f4f
to
e752a2a
Compare
e356e53
to
692e02a
Compare
692e02a
to
966d41e
Compare
No description provided.